7f3370b6b0738f6ea840107880c4d261628fdc5c,client/src/main/java/org/asynchttpclient/netty/NettyResponseFuture.java,NettyResponseFuture,get,#number#TimeUnit#,175

Before Change



    @Override
    public V get(long l, TimeUnit tu) throws InterruptedException, TimeoutException, ExecutionException {
        if (!latch.await(l, tu))
            throw new TimeoutException();
        return getContent();
    }

After Change



    @Override
    public V get(long l, TimeUnit tu) throws InterruptedException, TimeoutException, ExecutionException {
        return future.get(l, tu);
    }

    private V getContent() throws ExecutionException {